home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 4 / Gold Medal Software - Volume 4 (Gold Medal) (1994).iso / utils1 / 262to263.arj / RUNME.BAT < prev   
DOS Batch File  |  1994-06-15  |  2KB  |  44 lines

  1. echo off
  2. echo ╔═════════════════════════════════════════════════════════════╗
  3. echo ║        DESQview patch for version 2.62 dated 12/01/93       ║
  4. echo ║                                                             ║
  5. echo ║ This patchfile implements fixes to DESQview version 2.62.   ║
  6. echo ║ This patch will work ONLY on DESQview version 2.62. The     ║
  7. echo ║ date on the DV.EXE file in your DV directory should be      ║
  8. echo ║ 12/01/93. If the date on these files is later than          ║
  9. echo ║ 12/01/93, you do not need this patch.                       ║
  10. echo ║                                                             ║
  11. echo ║ Do not run inside DESQview, as the files being used by DV   ║
  12. echo ║ will not be patched. Quit DV then run this file again.      ║
  13. echo ║                                                             ║
  14. echo ║ Press any key to continue or Control-C to abort.            ║
  15. echo ╚═════════════════════════════════════════════════════════════╝
  16. pause
  17. ren patch.ex_ patch.exe
  18. if not exist PATCH.EXE goto error
  19. if not exist 262263.RTP goto error
  20. if not exist DV.EXE goto error
  21. patch 262263.rtp
  22. patch mft.rtp 
  23. echo Patch complete! Now deleting patch files...
  24. del patch.exe
  25. del 262263.rtp
  26. del mft.rtp
  27. echo Patch successfully applied; patch files deleted.
  28. goto end
  29. :error
  30. echo ╔══════════════════════════════════════════════════════╗
  31. echo ║ This patch should be applied by copying PATCH.EX_,   ║
  32. echo ║ 262263.rtp, mft.rtp and RUNME.BAT into your DV       ║
  33. echo ║ directory, then type:                                ║
  34. echo ║                                                      ║
  35. echo ║ RUNME                                                ║
  36. echo ║                                                      ║
  37. echo ║ Do not run inside DESQview, as the files being       ║
  38. echo ║ used by DV will not be patched.                      ║
  39. echo ║                                                      ║
  40. echo ║ Quit DV then run this file again.                    ║
  41. echo ║                                                      ║
  42. echo ╚══════════════════════════════════════════════════════╝
  43. :end
  44.